home *** CD-ROM | disk | FTP | other *** search
/ Dream Season 1996 - Flor…a's National Championship / Florida's National Championship on CD-ROM - Dream Season 1996.iso / mac / Dream Season '96 / Dream Season '96.DXR / 00003_Scroll Scripts.ls < prev    next >
Encoding:
Text File  |  1997-03-19  |  4.3 KB  |  137 lines

  1. on ScrollDrag bDate
  2.   global gCurrentRecord, gList, gWORLDSTARTDATE, gWORLDENDDATE, gSLIDERSPRITE, gSLIDERTHUMBSPRITE, gSLIDERTHUMBTEXTSPRITE, gSLIDERTHUMBTEXTOFFSET
  3.   ScrollStopMedia()
  4.   set NewRecord to 0
  5.   set NewMedia to 0
  6.   puppetSprite(gSLIDERTHUMBSPRITE, 1)
  7.   puppetSprite(gSLIDERTHUMBTEXTSPRITE, 1)
  8.   repeat while the mouseDown
  9.     set the locH of sprite gSLIDERTHUMBSPRITE to constrainH(gSLIDERSPRITE, the mouseH)
  10.     set h to the locH of sprite gSLIDERTHUMBSPRITE
  11.     set the locH of sprite gSLIDERTHUMBTEXTSPRITE to h + gSLIDERTHUMBTEXTOFFSET
  12.     set n to float(h - the left of sprite gSLIDERSPRITE) / the width of sprite gSLIDERSPRITE
  13.     set index to GetScrollRecord(n, bDate)
  14.     if bDate then
  15.       set n to integer(((gWORLDENDDATE - gWORLDSTARTDATE) * n) + gWORLDSTARTDATE)
  16.       set key to string(n)
  17.     else
  18.       set key to char 1 to 2 of word 1 of line index of gList & ".."
  19.     end if
  20.     set the text of cast "thumb scroll text" to key
  21.     updateStage()
  22.     if index <> gCurrentRecord then
  23.       set NewRecord to 1
  24.       LoadRecord(index)
  25.       HideRecordPreviews()
  26.       HideMedia()
  27.       set NewMedia to 1
  28.       set TimeForNewMedia to the ticks + (60 * 2)
  29.     end if
  30.     if (the ticks > TimeForNewMedia) and NewMedia then
  31.       LoadMedia(1)
  32.       set NewMedia to 0
  33.     end if
  34.   end repeat
  35.   if NewRecord then
  36.     if NewMedia then
  37.       LoadMedia(1)
  38.     end if
  39.     go(marker(0))
  40.   end if
  41. end
  42.  
  43. on GetScrollRecord fPercent, bDate
  44.   global gList, gWORLDSTARTDATE, gWORLDENDDATE
  45.   set totalLines to the number of lines in gList
  46.   if bDate then
  47.     set n to integer(((gWORLDENDDATE - gWORLDSTARTDATE) * fPercent) + gWORLDSTARTDATE)
  48.     set index to totalLines / 2
  49.     set indexdiv to index / 2
  50.     set t to line index of gList
  51.     set t2 to line index + 1 of gList
  52.     repeat while not ((n >= t) and (n < t2))
  53.       if n < t then
  54.         set index to index - indexdiv
  55.       else
  56.         set index to index + indexdiv
  57.       end if
  58.       set indexdiv to indexdiv / 2
  59.       if indexdiv < 1 then
  60.         set indexdiv to 1
  61.       end if
  62.       set t to line index of gList
  63.       if index >= totalLines then
  64.         set t2 to "9999"
  65.         next repeat
  66.       end if
  67.       set t2 to line index + 1 of gList
  68.     end repeat
  69.   else
  70.     set index to integer(totalLines * fPercent)
  71.     if index < 1 then
  72.       set index to 1
  73.     end if
  74.     if index > totalLines then
  75.       set index to totalLines
  76.     end if
  77.   end if
  78.   return index
  79. end
  80.  
  81. on ScrollLeftRight dir, bDate
  82.   global gCurrentRecord, gList, gWORLDSTARTDATE, gWORLDENDDATE, gSLIDERSPRITE, gSLIDERTHUMBSPRITE, gSLIDERTHUMBTEXTSPRITE, gSLIDERTHUMBTEXTOFFSET
  83.   ScrollStopMedia()
  84.   set NewMedia to 0
  85.   set OK to 1
  86.   puppetSprite(gSLIDERTHUMBSPRITE, 1)
  87.   puppetSprite(gSLIDERTHUMBTEXTSPRITE, 1)
  88.   repeat while OK and (((dir < 0) and IsPrevRecord()) or ((dir > 0) and IsNextRecord()))
  89.     if dir < 0 then
  90.       PrevRecord()
  91.     else
  92.       NextRecord()
  93.     end if
  94.     if bDate then
  95.       set key to string(word 1 of line gCurrentRecord of gList)
  96.       set n to integer(float(key - gWORLDSTARTDATE) / (gWORLDENDDATE - gWORLDSTARTDATE) * the width of sprite gSLIDERSPRITE)
  97.     else
  98.       set key to char 1 to 2 of word 1 of line gCurrentRecord of gList & ".."
  99.       set n to integer(float(gCurrentRecord) / the number of lines in gList * the width of sprite gSLIDERSPRITE)
  100.     end if
  101.     set h to the left of sprite gSLIDERSPRITE + n
  102.     set the locH of sprite gSLIDERTHUMBSPRITE to h
  103.     set the locH of sprite gSLIDERTHUMBTEXTSPRITE to h + gSLIDERTHUMBTEXTOFFSET
  104.     HideRecordPreviews()
  105.     HideMedia()
  106.     set NewMedia to 1
  107.     set the text of cast "thumb scroll text" to key
  108.     set OK to the stillDown
  109.     set OK to the stillDown
  110.     updateStage()
  111.   end repeat
  112.   if NewMedia then
  113.     LoadMedia(1)
  114.   end if
  115.   go(marker(0))
  116. end
  117.  
  118. on ScrollStopMedia
  119.   global gVIDEOSPRITE, gAUDIOSPRITE
  120.   if the visible of sprite (gVIDEOSPRITE + 1) then
  121.     set n to the castNum of sprite (gVIDEOSPRITE + 1)
  122.     if n > 0 then
  123.       if the castType of cast n = #digitalVideo then
  124.         set the movieRate of sprite (gVIDEOSPRITE + 1) to 0
  125.       end if
  126.     end if
  127.   end if
  128.   if the visible of sprite (gAUDIOSPRITE + 1) then
  129.     set n to the castNum of sprite (gAUDIOSPRITE + 1)
  130.     if n > 0 then
  131.       if the castType of cast n = #digitalVideo then
  132.         set the movieRate of sprite (gAUDIOSPRITE + 1) to 0
  133.       end if
  134.     end if
  135.   end if
  136. end
  137.